Overload | Description |
---|---|
SelectMany<TCollection,TResult>(Expression<Func<T,IObservableSource<TCollection>>>,Expression<Func<T,TCollection,TResult>>) | Projects each element of this view to a collection of collections, flattens the resulting collections into one collection, and invokes a result selector function on each element therein. |
SelectMany<TResult>(Expression<Func<T,IObservableSource<TResult>>>) | Projects each element of this view to a collection of TResult and flattens the resulting collections into one view. |